Fonte de ícone do fontello não funciona com o Meteor js

Eu baixei uma fonte de ícones personalizada do fontello e pretendo usá-la no meu aplicativo de meteoros. Eu tentei a demonstração que vem com o pacote baixado e as fontes exibem bem. Aqui está o meu css:

@font-face {
 font-family: 'fontello';
 src: url('fonts/fontello.eot?98991264');
 src: url('fonts/fontello.eot?98991264#iefix') format('embedded-opentype'),
   url('fonts/fontello.woff?98991264') format('woff'),
   url('fonts/fontello.ttf?98991264') format('truetype'),
   url('fonts/fontello.svg?98991264#fontello') format('svg');
font-weight: normal;
font-style: normal;
}

[class^="icon-"]:before, [class*=" icon-"]:before {
 font-family: "fontello";
 font-style: normal;
 font-weight: normal;
 speak: none;
 display: inline-block;
 text-decoration: inherit;
 width: 1em;
 margin-right: .2em;
 text-align: center;

 /* For safety - reset parent styles, that can break glyph codes*/
 font-variant: normal;
 text-transform: none;

 /* fix buttons height, for twitter bootstrap */
 line-height: 1em;

}

.icon-twitter:before { content: '\e805'; } /* '' */
.icon-github-circled:before { content: '\e804'; } /* '' */
.icon-pencil:before { content: '\e801'; } /* '' */
.icon-cancel:before { content: '\e802'; } /* '' */
.icon-chat:before { content: '\e800'; } /* '' */

Minha estrutura de pastas é assim/client/css/styles.css e para as fontes/client/css/fonts/

No meu html eu adicionei essa marcação<i class="icon-twitter"></i> e infelizmente tudo o que vejo quando vejo a página é tudo o que vejo Qualquer ajuda seria ótimo. obrigado

questionAnswers(3)

yourAnswerToTheQuestion