/* ==============================================
   1. INTER (Sans-Serif)
   Wagi: 100-900
   ============================================== */

/* 100 - Thin */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

/* 200 - ExtraLight */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

/* 300 - Light */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* 400 - Regular (Podstawowy) */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* 500 - Medium */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* 600 - SemiBold */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* 700 - Bold */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* 800 - ExtraBold */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* 900 - Black */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ==============================================
   2. PLAYFAIR DISPLAY (Serif)
   Wagi: 400-900 (Ten font rzadko ma wagi poniżej 400)
   ============================================== */

/* 400 - Regular */
@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/playfair/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/playfair/PlayfairDisplay-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* 500 - Medium */
@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/playfair/PlayfairDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/playfair/PlayfairDisplay-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* 600 - SemiBold */
@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/playfair/PlayfairDisplay-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/playfair/PlayfairDisplay-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* 700 - Bold */
@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/playfair/PlayfairDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/playfair/PlayfairDisplay-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* 800 - ExtraBold */
@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/playfair/PlayfairDisplay-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/playfair/PlayfairDisplay-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

/* 900 - Black */
@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/playfair/PlayfairDisplay-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('/fonts/playfair/PlayfairDisplay-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* ==============================================
   3. USTAWIENIA GLOBALNE
   Wymuszamy użycie tych fontów w całym serwisie
   ============================================== */




/* Klasy pomocnicze Tailwind (jeśli nie masz pełnego builda) */
.font-sans { font-family: 'Inter', sans-serif; }
.font-thin { font-weight: 100; }
.font-extralight { font-weight: 200; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }