/* fonts.css */

/*
 * Credit and References:
 * - Font by Jos Buivenga (exljbris) <http://www.exljbris.com/museo.html>
 * - 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/>
 */


/***********
 * Regular *
 ***********/

/* For IE: */
@font-face {
    font-family : "Tallys";
    src         : url("tallys.eot");
    font-style  : normal;
    font-weight : normal;
}

/* For good browsers: */
@font-face {
    font-family : "Tallys";
    src         : local("✪"),
                  url("tallys.ttf") format("truetype");
    font-style  : normal;
    font-weight : normal;
}

