see if you can spot the new variable font I’m using on my personal site (it’s very subtle )
@zachleat Does font-weight: 900 serve as a fallback? Some browsers might attempt to synthesize that weight.
@simevidas do you see a fallback case in play? I have it listed in both my @font-face blocks and usage instances
@zachleat I was confused because Hex Franklin Tight does not have a "wght" axis, so the number 900 seemed wrong. I guess, it would be simpler to just use font-weight: bold in both places. Or even simpler, to not set font-weight anywhere, but instead set font-synthesis: none to prevent the browser from messing with the font.
@simevidas if you don’t set it, it’s implied to 400 which I believe would synthesize on an h1, via browser default bold. That said, I didn’t realize that font-synthesis browser support was so good now wow!