To begin with, load the Open Sans font; if it is not available, then load Helvetica. If Helvetica is also not an option, proceed to load Arial. If none of these options are accessible, then consider loading another sans-serif font.
Reference:
The property value consists of a prioritized list of font family names and/or generic family names. Each component value is separated by a comma to indicate alternatives:
body { font-family: Gill, Helvetica, sans-serif }
There are two categories of font family names:
<family-name>
This refers to the specific name of a preferred font family. In the given example, "Gill" and "Helvetica" are both font families being used.
<generic-family>
In the aforementioned scenario, the final value represents a generic family name. The following generic families have been defined:
'serif' (e.g., Times)
'sans-serif' (e.g., Helvetica)
'cursive' (e.g., Zapf-Chancery)
'fantasy' (e.g., Western)
'monospace' (e.g., Courier)