I've got a custom font setup on my site using @font-face in my stylesheet. It works just fine on my main page, but if I try to read the same stylesheet through another html file in a different directory, all of the styling will work fine except for the font.The stylesheet (style.css) and font are in a /style/ directory.The html file is in a sub-directory, and I'm reading the stylesheet using this:\[code\]<link href = "http://stackoverflow.com/questions/style.css" type = "text/css" rel = "stylesheet"/>\[/code\]Again, it'll use all of the styling except the custom font. Why's that?