Where should I store the fonts by default? I am having trouble loading the font within Rails, but when using a 'font kit' downloaded from fontsquirrel.com that includes the font, CSS, and sample HTML in the same folder, it works fine.
Here is my CSS:
@font-face {
font-family: 'RalewayThin';
src: url('fonts/raleway_thin.eot');
src: url('fonts/raleway_thin.ttf') format('truetype');
}
The fonts folder is located in /public directory.