Original conversation here
- It's not clear where fonts are loaded- it could be through the google font API
- We need to make sure we have “real” bold versions of the font available so that the browser doesn’t try to generate a faux bold
- Relatedly, we should only use font weight 400 (normal) or 700 (bold). Other values generate faux weights
- It looks like we’re globally setting the letter spacing to 0.03em;which causes it to look a bit different
- We’re occasionally using text sizes specified in em rather than px
- All buttons should be bold
- Text color should be grey 900 (reference)
Original conversation here