Serving Fonts with Rails Application
Rails application allows you to add custom fonts to it via application.css.scss file. All you need to do in order to accomplish it is to add @font-face with links pointing to your font file. Please note "/assets/" folder within your url path. This is required by Rails since this is the place where Rails will compile your application assets.
@font-face {
font-family:'My-Font';
src: url('/assets/My-Font.eot');
}