Is there a way to have a font fall back to a specific one on Google Web Fonts (Open Sans) if the user does not have Helvetica installed?
I'm looking for an efficient method where downloading the font is only necessary if needed. For example, I don't want Mac users to download the font unnecessarily.
It would be great if it could be done like this:
font-family: HelveticaNeue-Light, 'Open Sans Light', Arial;
Additionally, when falling back to Open Sans or Arial from the specific light version of Helvetica ('Helvetica Neue Light'), how can we specify the font weight so that it only applies to the fallback font? Does the following code accomplish that?
h1 { font-family: HelveticaNeue-Light, Arial; font-weight: 400; }