/**
    On rend les typographies (rangées dans fonts/) utilisables dans le CSS
    (https: //developer.mozilla.org/en-US/docs/Web/CSS/@font-face)
*/

@font-face { /* Muli-Regular */
    font-family: 'muli';
    src: url('../../fonts/muli.woff2') format('woff2'),
        url('../../fonts/muli.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face { /* TTNormsPro Bold */
    font-family: 'ttnormspro';
    src: url('../../fonts/ttnormspro-bold.woff2') format('woff2'),
        url('../../fonts/ttnormspro-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face { /* TTNormsPro Medium */
    font-family: 'ttnormspro';
    src: url('../../fonts/ttnormspro-medium.woff2') format('woff2'),
        url('../../fonts/ttnormspro-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}