/* --- CSS VARIABLES & BRAND SYSTEM --- */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GOTHAM-MEDIUM.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GOTHAM-BOLD.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --yellow: #DFE77E;
    --gray-light: #fafafa;
    --gray-border: #eeeeee;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Pogonia', serif;
}

/* --- RESET & FOUNDATION --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    background-color: var(--white); 
    color: var(--black); 
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}
