/*
 * Minimal Inter font loader · uses ONLY the variable font
 * (which is the only file actually shipped in font-files/).
 * Variable covers all weights 100-900 + italic via 1 file.
 * Eliminates 404 spam from references to Inter-Regular.woff2 / Bold / etc.
 */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('font-files/InterVariable.woff2?v=4.1') format('woff2-variations'),
         url('font-files/InterVariable.woff2?v=4.1') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
    src: url('font-files/InterVariable-Italic.woff2?v=4.1') format('woff2-variations'),
         url('font-files/InterVariable-Italic.woff2?v=4.1') format('woff2');
}
@font-face {
    font-family: 'Inter var';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('font-files/InterVariable.woff2?v=4.1') format('woff2-variations'),
         url('font-files/InterVariable.woff2?v=4.1') format('woff2');
}
@font-face {
    font-family: 'Inter var';
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
    src: url('font-files/InterVariable-Italic.woff2?v=4.1') format('woff2-variations'),
         url('font-files/InterVariable-Italic.woff2?v=4.1') format('woff2');
}
