/* Fonts CSS file (fonts.css) */
@font-face {
    font-family: 'Neue Machina';
    src: url('neuemachina-light-webfont.woff2') format('woff2'),
         url('neuemachina-light-webfont.woff') format('woff'),
         url('NEUEMACHINA-LIGHT.OTF') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Machina';
    src: url('neuemachina-regular-webfont.woff2') format('woff2'),
         url('neuemachina-regular-webfont.woff') format('woff'),
         url('NEUEMACHINA-REGULAR.OTF') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Machina';
    src: url('neuemachina-medium-webfont.woff2') format('woff2'),
         url('neuemachina-medium-webfont.woff') format('woff'),
         url('NEUEMACHINA-MEDIUM.OTF') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Machina';
    src: url('neuemachina-bold-webfont.woff2') format('woff2'),
         url('neuemachina-bold-webfont.woff') format('woff'),
         url('NEUEMACHINA-BOLD.OTF') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Machina';
    src: url('neuemachina-ultrabold-webfont.woff2') format('woff2'),
         url('neuemachina-ultrabold-webfont.woff') format('woff'),
         url('NEUEMACHINA-ULTRABOLD.OTF') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Machina';
    src: url('neuemachina-black-webfont.woff2') format('woff2'),
         url('neuemachina-black-webfont.woff') format('woff'),
         url('NEUEMACHINA-BLACK.OTF') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Machina';
    src: url('neuemachina-ultralight-webfont.woff2') format('woff2'),
         url('neuemachina-ultralight-webfont.woff') format('woff'),
         url('NEUEMACHINA-ULTRALIGHT.OTF') format('opentype');
    font-weight: 200;
    font-style: normal;
}

/* Key changes: 
1. Added multiple formats for each font style (woff2, woff, otf) for cross-browser compatibility.
2. Assigned appropriate font-weight values for each variant to ensure proper usage in CSS. */
