/* Font Family Integration - Using web-safe fallbacks for better compatibility */

/* New Fonts for Revision */
@font-face {
    font-family: 'BodoniNova';
    src: url('../fonts/a_BodoniNovaNr Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'ArtegraSans';
    src: url('../fonts/ArtegraSansAlt-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Font Variables */
:root {
    --font-family-primary: 'ArtegraSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-weight-extralight: 200;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

/* Typography Classes */
.font-extralight {
    font-weight: var(--font-weight-extralight);
}

.font-light {
    font-weight: var(--font-weight-light);
}

.font-regular {
    font-weight: var(--font-weight-regular);
}

.font-medium {
    font-weight: var(--font-weight-medium);
}

.font-semibold {
    font-weight: var(--font-weight-semibold);
}

.font-bold {
    font-weight: var(--font-weight-bold);
}
