I\'ve came across a problem with custom font i use for my website.
So i use following CSS for text.
font-family: \"Open Sans\",Helvetica,Arial;
font-wei
You could define a new @font-face
for each font you want.
@font-face {
font-family: 'mainFont';
src: url(/*Link to Open Sans*/);
font-weight: 600;
}
@font-face {
font-family: 'secondaryFont';
src: local('Helvetica');
font-weight: 400;
}
@font-face {
font-family: 'tertiaryFont';
src: local('Arial');
font-weight: 600;
}
Then you'll end up with font-family: 'mainFont', 'secondaryFont', 'tertiaryFont';
which should get the desired results.