Hello There,
Thanks for writing in!
You are having this issue because of this code:
@font-face{
font-family:'FuturaLight';
src:url('http://www.example.com/wp-content/uploads/fonts/FuturaLig.woff');
src:url('http://www.example.com/wp-content/uploads/fonts/FuturaLig.woff2');
}
@font-face{
font-family:'Futura';
src:url('http://www.example.com/wp-content/uploads/fonts/Futura.woff');
src:url('http://www.example.com/wp-content/uploads/fonts/Futura.woff2');
}
@font-face{
font-family:'FuturaMed';
src:url('http://www.example.com/wp-content/uploads/fonts/FuturaMed.woff');
src:url('http://www.example.com/wp-content/uploads/fonts/FuturaMed.woff2');
}
@font-face{
font-family:'FuturaHeavy';
src:url('http://www.example.com/wp-content/uploads/fonts/FuturaBold.woff');
src:url('http://www.example.com/wp-content/uploads/fonts/FuturaBold.woff2');
}
(I have replace your domain with example.com)
The problem in this code is that you are only loading the .woff file which is only acceptable in Firefox and not in other browsers. You will have to include the *.ttf, *.eot and other font files to make sure that it will display the same in all browsers.
To better understand how the @font css and the different font file format works for what browser, please check this out: