Render Fontface difettoso in Chrome

E' dovuto al fatto che i file svg andrebbero caricati prima di tutti.

Per risolvere la cosa รจ necessario creare una mediaquery che intercetti chrome e gli imponga l'uso del solo svg:

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

}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	@font-face {
		font-family: 'solomon_blackregular';
   	src: url('solomon_black.svg#solomon_blackregular') format('svg');
		font-weight: normal;
		font-style: normal;
	}
}