/*
 * Inter font — lokalno hostana verzija
 * Preuzeto s: https://fontsource.org/fonts/inter
 *
 * UPUTA ZA INSTALACIJU:
 * 1. Idi na https://fontsource.org/fonts/inter
 * 2. Klikni Download (odaberi samo weight 400 i 500, latin subset)
 * 3. Iz preuzetog ZIP-a kopiraj .woff2 datoteke u /wp-content/themes/vem-theme/assets/fonts/
 * 4. Trebaš ove datoteke:
 *    - inter-latin-400-normal.woff2
 *    - inter-latin-500-normal.woff2
 *
 * Alternativno — s npm paketa:
 * npm install @fontsource/inter
 * Datoteke su u node_modules/@fontsource/inter/files/
 */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                   U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                   U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
                   U+FFFD,
                   /* Croatian specifics */
                   U+010C, U+010D, U+0106, U+0107, U+017D, U+017E,
                   U+0160, U+0161, U+0110, U+0111;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/inter-latin-500-normal.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                   U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                   U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
                   U+FFFD,
                   /* Croatian specifics */
                   U+010C, U+010D, U+0106, U+0107, U+017D, U+017E,
                   U+0160, U+0161, U+0110, U+0111;
}
