/* ==========================================
   1. SCHRIFTARTEN DEFINIEREN (Carlito)
   ========================================== */

/* Regular (Normal) */
@font-face {
    font-family: 'Carlito';
    src: url('fonts/Carlito-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Bold (Fett) */
@font-face {
    font-family: 'Carlito';
    src: url('fonts/Carlito-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Italic (Kursiv) */
@font-face {
    font-family: 'Carlito';
    src: url('fonts/Carlito-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

/* Bold Italic (Fett-Kursiv) */
@font-face {
    font-family: 'Carlito';
    src: url('fonts/Carlito-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

/* ==========================================
   2. SCHRIFTART GLOBAL ZUWEISEN
   ========================================== */
html, body {
    font-family: 'Carlito', Arial, sans-serif;
}