/* V2/Assets/Css/Fonts.css - Unified Font System */

/* ===== POLICES ===== */
/* Titres : Lilita One (Google Fonts) - Style Supercell Store */
@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* Clash font (local, fallback) */
@font-face {
    font-family: 'Clash';
    src: url('../Fonts/Clash_Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clash';
    src: url('../Fonts/Clash_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===== VARIABLES ===== */
:root {
    --font-title: 'Lilita One', 'Clash', 'Impact', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

/* ===== APPLICATION ===== */
body {
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.sc-title {
    font-family: var(--font-title);
}