/* Firemní font TUL Mono */

@font-face {
    font-family: 'TUL Mono';
    src: url('../fonts/TUL_Mono/webfonts/TULMono-Hairline.woff2') format('woff2'),
         url('../fonts/TUL_Mono/webfonts/TULMono-Hairline.woff') format('woff'),
         url('../fonts/TUL_Mono/webfonts/TULMono-Hairline.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TUL Mono';
    src: url('../fonts/TUL_Mono/webfonts/TULMono-Regular.woff2') format('woff2'),
         url('../fonts/TUL_Mono/webfonts/TULMono-Regular.woff') format('woff'),
         url('../fonts/TUL_Mono/webfonts/TULMono-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TUL Mono';
    src: url('../fonts/TUL_Mono/webfonts/TULMono-Bold.woff2') format('woff2'),
         url('../fonts/TUL_Mono/webfonts/TULMono-Bold.woff') format('woff'),
         url('../fonts/TUL_Mono/webfonts/TULMono-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Dekorativní varianta (jedna linka) - samostatná rodina, není to váhový řez */
@font-face {
    font-family: 'TUL Mono SingleLine';
    src: url('../fonts/TUL_Mono/webfonts/TULMono-SingleLine.ttf') format('truetype'),
         url('../fonts/TUL_Mono/webfonts/TULMono-SingleLine.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Font Inter (variabilní - jeden soubor pokrývá váhy 100-900) */

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-roman.var.woff2') format('woff2-variations'),
         url('../fonts/Inter/Inter-roman.var.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-italic.var.woff2') format('woff2-variations'),
         url('../fonts/Inter/Inter-italic.var.woff2') format('woff2');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --font-tul-mono: 'TUL Mono', ui-monospace, 'SFMono-Regular', Consolas, monospace;
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Příklad použití - uprav/smaž podle potřeby daného webu */
body {
    font-family: var(--font-tul-mono);
    font-weight: 400;
}
