/**
 * Copyright (c) 2016 Weitian LI <liweitianux@live.com>
 * MIT license
 *
 * Font styles for the Web UI of "fg21sim"
 *
 * Credits:
 * [1] https://www.smashingmagazine.com/2013/02/setting-weights-and-styles-at-font-face-declaration/
 * [2] https://stackoverflow.com/a/28339483/4856091
 */


/**
 * Source Sans Pro
 * (Regular + Semibold)
 */
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-Regular.ttf.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-It.ttf.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-Semibold.ttf.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'SourceSansPro';
    src: url('../fonts/SourceSansPro-SemiboldIt.ttf.woff') format('woff');
    font-weight: bold;
    font-style: italic;
}


/**
 * Source Code Pro
 * (Regular only)
 */
@font-face {
    font-family: 'SourceCodePro';
    src: url('../fonts/SourceCodePro-Regular.ttf.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/**
 * Set font styles
 */
body {
    font-family: 'SourceSansPro', sans-serif;
}

pre, .code {
    font-family: 'SourceCodePro', monospace;
}