/* =========================================================
   NIKKI — FONT SYSTEM
   ========================================================= */

/* -------------------------
   LOGO — CLEMENTE
-------------------------- */
@font-face {
    font-family: 'Clemente';
    src: url('/assets/fonts/Clemente.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Classe dédiée logo (indépendante de Tailwind) */
.font-logo {
    font-family: 'Clemente', sans-serif !important;
   /* letter-spacing: 0.1em;*/
}


/* -------------------------
   TEXTE — INTER
-------------------------- */
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* -------------------------
   GLOBAL TYPOGRAPHY
-------------------------- */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* -------------------------
   UTILITAIRES PREMIUM
-------------------------- */

/* titres élégants */
.font-heading {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

/* texte secondaire */
.text-muted {
    color: #6b7280; /* équivalent gray-500 */
}

/* micro-optimisation rendu */
.text-balance {
    text-wrap: balance;
}