/* Neverwinter Nights Fonts */

@font-face {
    font-family: 'Neverwinter';
    src: url('/static/nwn-fonts/Neverwinter.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neverwinter';
    src: url('/static/nwn-fonts/Neverwinter Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neverwinter';
    src: url('/static/nwn-fonts/Neverwinter Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neverwinter';
    src: url('/static/nwn-fonts/Neverwinter Bold Italic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

/* CSS Custom Properties for easy use */
:root {
    --font-nwn: 'Neverwinter', 'Times New Roman', serif;
}

/* Utility classes */
.font-nwn {
    font-family: var(--font-nwn);
}
