Olá!
Estou desenvolvendo um projeto onde utilizo JSF 2 com JBOSS.
Estou querendo utilizar uma fonte diferente e por isso estou usando o @font-face. No entando, a fonte não está renderizando no navegador 
Estou usando dessa forma:
@font-face {
font-family: 'GillSansStd';
src: url('#{facesContext.externalContext.requestContextPath}/resources/fonts/GillSansStd-webfont.eot');
src: url('#{facesContext.externalContext.requestContextPath}/resources/fonts/GillSansStd-webfont.eot?#iefix') format('embedded-opentype'),
url('#{facesContext.externalContext.requestContextPath}/resources/fonts/GillSansStd-webfont.woff') format('woff'),
url('#{facesContext.externalContext.requestContextPath}/resources/fonts/GillSansStd-webfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
.GillSansStd {font-family:GillSansStd, Georgia, Arial, Tahoma;}
No .xhtml usso assim:
<font class="GillSansStd" style="font-size: 16px;">
Teste
</font>
Mas não da certo e a fonte não aparece certo… alguem sabe o que pode estar acontecendo?
