I have two web fonts installed on my site and one is working on Firefox, while the other one is not. If you check it on Chrome, both of the Google web fonts work perfect. Here is my code:
@font-face {
font-family: 'UnitSlabProLight';
src: url('/unitslabpro-light-webfont.eot');
src: url('/unitslabpro-light-webfont.eot?#iefix') format('embedded-opentype'),
url('/unitslabpro-light-webfont.woff') format('woff'),
url('/unitslabpro-light-webfont.ttf') format('truetype'),
url('/unitslabpro-light-webfont.svg#UnitSlabProLight') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'UnitSlabProBlack';
src: url('/unitslabpro-black-webfont.eot');
src: url('/unitslabpro-black-webfont.eot?#iefix') format('embedded-opentype'),
url('/unitslabpro-black-webfont.woff') format('woff'),
url('/unitslabpro-black-webfont.ttf') format('truetype'),
url('/unitslabpro-black-webfont.svg#UnitSlabProBlack') format('svg');
font-weight: normal;
font-style: normal;
}
Site is http://www.journeytoearth.com/
Thanks in advance for any help and solutions.