/* fonts.css */

/*
 * Credit and References:
 * - Font by Yanone <http://www.yanone.de/typedesign/tagesschrift/>
 * - Font conversion by FontSquirrel <http://www.fontsquirrel.com/fontface/generator>
 * - CSS syntax inspired by:
 *   - Paul Irish <http://paulirish.com/2009/bulletproof-font-face-implementation-syntax/>
 *   - Richard Fink <http://readableweb.com/mo-bulletproofer-font-face-css-syntax/>
 */

/* For IE: */
@font-face {
    font-family : "Yanone Tagesschrift";
    src         : url("yanone-tagesschrift.eot");
    font-style  : normal;
    font-weight : normal;
}

/* For the others: */
@font-face {
    font-family : "Yanone Tagesschrift";
    src         : local("✪"),
                  url("yanone-tagesschrift.ttf") format("truetype");
    font-style  : normal;
    font-weight : normal;
}

