/* fonts.css */

/*
 * Credit and References:
 * - Font by Yanone <http://www.yanone.de/typedesign/kaffeesatz/>
 * - 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/>
 */

/********
 * Thin *
 ********/

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

/* For the others: */
@font-face {
    font-family : "Yanone Kaffeesatz";
    src         : local("✪"),
                  url("yanone-kaffeesatz-thin.otf") format("opentype");
    font-style  : normal;
    font-weight : 100;
}

/*********
 * Light *
 *********/

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

/* For the others: */
@font-face {
    font-family : "Yanone Kaffeesatz";
    src         : local("✪"),
                  url("yanone-kaffeesatz-light.otf") format("opentype");
    font-style  : normal;
    font-weight : 300;
}

/********
 * Bold *
 ********/

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

/* For the others: */
@font-face {
    font-family : "Yanone Kaffeesatz";
    src         : local("✪"),
                  url("yanone-kaffeesatz-bold.otf") format("opentype");
    font-style  : normal;
    font-weight : bold;
}

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

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

/* For the others: */
@font-face {
    font-family : "Yanone Kaffeesatz";
    src         : local("✪"),
                  url("yanone-kaffeesatz-regular.otf") format("opentype");
    font-style  : normal;
    font-weight : normal;
}

