So I have 2 fonts.
@font-face {
font-family: 'helvetica neue black condensed';
src: url('/wcsstore/Html/Static/fonts/HelveticaNeueBlackCondensed/HelveticaNeueBlackCondensed.eot');
src: url('/wcsstore/Html/Static/fonts/HelveticaNeueBlackCondensed/HelveticaNeueBlackCondensed?#iefix') format('embedded-opentype'),
url('/wcsstore/Html/Static/fonts/HelveticaNeueBlackCondensed/HelveticaNeueBlackCondensed.woff') format("woff"),
url('/wcsstore/Html/Static/fonts/HelveticaNeueBlackCondensed/HelveticaNeueBlackCondensed.ttf') format("truetype");
font-style: normal;
font-weight: normal;
}
@font-face {
font-family: 'helvetica neue black condensed oblique';
src: url('/wcsstore/Html/Static/fonts/HelveticaNeueBlackCondensed/HelveticaNeueBlackCondensed.eot');
src: url('/wcsstore/Html/Static/fonts/HelveticaNeueBlackCondensed/HelveticaNeueBlackCondensed?#iefix') format('embedded-opentype'),
url('/wcsstore/Html/Static/fonts/HelveticaNeueBlackCondensed/HelveticaNeueBlackCondensed.woff') format("woff"),
url('/wcsstore/Html/Static/fonts/HelveticaNeueBlackCondensed/HelveticaNeueBlackCondensed.ttf') format("truetype");
font-style: oblique;
font-weight: normal;
}
As you can see they are both referencing the same file. The first is normal, and second oblique. 'helvetica neue black condensed' works just fine, but for some reason, 'helvetica neue black condensed oblique' is not recognized by the browser. I have about 50 fonts, and the oblique ones are not working. Is this a coincidence?
Please do not lecture me about the use of certain fonts. I have the licenses. Do not tell me to make the font-style: oblique; in the main.css I want a font family that is oblique that is oblique by default.