/**
 * TMngO - Typographie Open-Source
 * Version: 1.0
 * Date: 11 février 2026
 * 
 * System Font Stack - Aucun téléchargement requis
 * 100% gratuit et performant
 * Fichier : 85 lignes
 */

/* ========================================
   FONT STACKS OPEN-SOURCE
   ======================================== */

:root {
    /* Font principale - System UI optimisée */
    --font-family-base: 
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        "Roboto",
        "Ubuntu",
        "Cantarell",
        "Noto Sans",
        "Helvetica Neue",
        Arial,
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji";
    
    /* Font monospace - Code et données */
    --font-family-mono: 
        ui-monospace,
        "Cascadia Code",
        "Source Code Pro",
        "Menlo",
        "Monaco",
        "Consolas",
        "DejaVu Sans Mono",
        "Liberation Mono",
        "Courier New",
        monospace;
    
    /* Font pour chiffres tabulaires (tableaux) */
    --font-family-tabular:
        ui-monospace,
        "SF Mono",
        "Cascadia Code",
        "Consolas",
        monospace;
}

/* ========================================
   GLOBAL TYPOGRAPHY
   ======================================== */

body {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--text-primary);
    
    /* Amélioration rendu fonts */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ========================================
   HEADINGS
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-size-xxl); }
h2 { font-size: var(--font-size-xl); }
h3 { font-size: var(--font-size-lg); }
h4 { font-size: var(--font-size-md); }
h5 { font-size: var(--font-size-base); }
h6 { font-size: var(--font-size-sm); }

/* ========================================
   CODE & DATA
   ======================================== */

code, kbd, samp, pre {
    font-family: var(--font-family-mono);
    font-size: 0.9em;
}

/* Chiffres tabulaires pour tableaux */
.tm-tabular,
.tm-transcription-table td {
    font-variant-numeric: tabular-nums;
    font-family: var(--font-family-tabular);
}
