files/en-us/web/css/reference/properties/font-synthesis-weight/index.md
The font-synthesis-weight CSS property lets you specify whether or not the browser may synthesize the bold typeface when it is missing in a font family.
It is often convenient to use the shorthand property {{cssxref("font-synthesis")}} to control all typeface synthesis values.
/* Keyword values */
font-synthesis-weight: auto;
font-synthesis-weight: none;
/* Global values */
font-synthesis-weight: inherit;
font-synthesis-weight: initial;
font-synthesis-weight: revert;
font-synthesis-weight: revert-layer;
font-synthesis-weight: unset;
auto
none
{{cssinfo}}
{{csssyntax}}
This example shows turning off synthesis of the bold typeface by the browser in the Montserrat font.
<p class="english">
This is the default <strong>bold typeface</strong> and
<em>oblique typeface</em>.
</p>
<p class="english no-syn">
The <strong>bold typeface</strong> is turned off here but not the
<em>oblique typeface</em>.
</p>
@import "https://fonts.googleapis.com/css2?family=Montserrat&display=swap";
.english {
font-family: "Montserrat", sans-serif;
}
.no-syn {
font-synthesis-weight: none;
}
{{EmbedLiveSample('Disabling synthesis of bold typeface', '', '100')}}
{{Specifications}}
{{Compat}}