/*
    1. Download some font - for example from google fonts
    2. Move fonts to public\fonts\custom_fonts folder
    3. Reference font with src: xxxxx

    Note: Im referencing here only TTF fonts, because only such format is provided with google fonts, but its the same with others

    Note: Im not changing previous fonts names, i just override them with fonts which are referenced here (it would be a bit tedious to track their all references in the system)

    Link for downloading different types of Google Fonts: https://github.com/googlefonts?q=raleway&type=&language=
    Also: https://google-webfonts-helper.herokuapp.com/fonts
*/


@font-face {
    font-family: Oswald;
    font-style: normal;
    font-weight: 400;
    src: url(custom_fonts/OpenSans-Regular.eot);
    /*src: url(custom_fonts/Montserrat-Bold.otf);*/
    src: local("Oswald Regular"), local("Oswald-Regular"),
    url(custom_fonts/OpenSans-Regular.ttf) format("truetype"), url(custom_fonts/OpenSans-Regular.svg) format("svg");
    /*url(custom_fonts/Montserrat-Bold.woff2) format("woff2"), url(custom_fonts/Montserrat-Bold.woff) format("woff"), url(custom_fonts/Montserrat-Bold.ttf) format("truetype"),
    url(custom_fonts/Montserrat-Bold.svg) format("svg");*/
}

@font-face {
    font-family: Raleway;
    font-style: normal;
    font-weight: 400;
    src: url(custom_fonts/OpenSans-Regular.eot);
    /*src: url(custom_fonts/Montserrat-Bold.otf);*/
    src: local("Raleway Regular"), local("Raleway Regular"),
    url(custom_fonts/OpenSans-Regular.ttf) format("truetype"), url(custom_fonts/OpenSans-Regular.svg) format("svg");
    /*url(custom_fonts/Montserrat-Bold.woff2) format("woff2"), url(custom_fonts/Montserrat-Bold.woff) format("woff"), url(custom_fonts/Montserrat-Bold.ttf) format("truetype"),
    url(custom_fonts/Montserrat-Bold.svg) format("svg");*/
}
