@ font face now not working

Hi,

I have implemented a font onto my site that I wanted to use. Its called “Inconsolata.”

I tested it on my site and also on my phone and and it worked yesterday…

But today it does not, I am not sure if I have altered something.

I don’t see anything wrong with my css code:

    body {
		text-align:center;
		font-family:'Inconsolata', Tahoma, Geneva, sans-serif;
		margin-top:0px;
		line-height:1.5em;
		margin-bottom:0px;
		font-size:14px;
		background-color:#fff;
		background-image:url(../images/bg_.jpg);
		background-position:top center;
		background-attachment:scroll;
		background-repeat:no-repeat;
		}	


	@font-face {
	font-family:'Inconsolata', Tahoma, Geneva, sans-serif;
 	src:url('http://mgdesign.hostultra.com/fonts/Inconsolata.otf');
	font-weight:normal;
	}
	
	

Any ideas as to why this isnt working?

Other than the erroneous ‘…’ around the word Inconsolata on two occurrences it looks like valid CSS 2.

@font-face {
font-family: Inconsolata, Tahoma, Geneva, sans-serif;
src: url('http://mgdesign.hostultra.com/fonts/Inconsolata.otf');
font-weight: normal;
}