I'm trying to solve problem with fonts. We have bought Helvetica Light font and we have linked it via font face. In CSS we have font-family: 'Helvetica', 'Arial', sans-serif;
.
Now when someone doesn't have Helvetica font installed in computer (Windows users mostly) they can see Light version correctly but they don't see Bold Helvetica correctly, because it uses closest font-weight of that font.
My question is whether it's possible or not to specify that if particular font-weight isn't available to use next font - Arial in this case.
Thanks to everyone who will try to help me.