I'm having a problem with CSS3's Font module.
I have a font with 3 types: bold, normal and italic and I inserted them in CSS with the same name but with font-weight and style attributes for each type. The problem is that in some browsers (Firefox and iOS Safari) they do not read the different fonts (bold and italic), considering only the default. The firefox even tries to "simulate a bold" by the original source, but it sucks.
I would like to know if anyone can help me with this without using different fonts for each type, for example: GudeaBold, GudeaItalic.
Below is the code.
@font-face {
font-family: "Gudea";
src: url('../font/Gudea-Italic-webfont.eot');
src: url('../font/Gudea-Italic-webfont.eot?#iefix') format('eot'), url('../font/Gudea-Italic-webfont.ttf') format('truetype'), url('../font/Gudea-Italic-webfont.woff') format('woff'), url('../font/Gudea-Italic-webfont.svg') format('svg');
font-weight: "normal";
font-style: "italic"
}
@font-face {
font-family: "Gudea";
src: url('../font/Gudea-Bold-webfont.eot');
src: url('../font/Gudea-Bold-webfont.eot?#iefix') format('eot'), url('../font/Gudea-Bold-webfont.ttf') format('truetype'), url('../font/Gudea-Bold-webfont.woff') format('woff'), url('../font/Gudea-Bold-webfont.svg') format('svg');
font-weight: "bold";
font-style: "normal"
}
@font-face {
font-family: "Gudea";
src: url('../font/Gudea-Regular-webfont.eot');
src: url('../font/Gudea-Regular-webfont.eot?#iefix') format('eot'), url('../font/Gudea-Regular-webfont.ttf') format('truetype'), url('../font/Gudea-Regular-webfont.woff') format('woff'), url('../font/Gudea-Regular-webfont.svg') format('svg');
font-weight: "normal";
font-style: "normal"
}