/* ==========================================
   FONTS.CSS - Typographie globale
   ========================================== */
:root {
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-mono: 'Consolas', 'Monaco', monospace;
}

body {
    font-family: var(--font-main);
}

#log, .mono-text {
    font-family: var(--font-mono);
}