There are times when web fonts fail to load, especially if hosted on platforms like Google Fonts. In such cases, fallback fonts may require special attention as they can vary significantly from the originally specified fonts.
For example:
font-family:'webfontname', 'winfont', 'linuxfont', sans-serif;
In this scenario, the web font should have a letter-spacing of 2px, while the winfont should have a letter-spacing of -4px.
How can I effectively handle this situation?
Thank you.