
/*
https://stackoverflow.com/questions/11002820/why-should-we-include-ttf-eot-woff-svg-in-a-font-face

add woff for IE 11 if needed like this:
url('Arial-ItalicMT.woff') format('woff');
*/

@font-face {
    font-family: 'ArialNova';
    src: url('./ArialNova-Italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'ArialNova';
    src: url('./ArialNova.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ArialNova';
    src: url('ArialNova-BoldItalic.woff2') format('woff2');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'ArialNova';
    src: url('ArialNova-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;

}

