/* Light font (normal weight, non-italic) */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('/fonts/helvetica/neue-helvetica-light.woff2') format('woff2'),
         url('/fonts/helvetica/neue-helvetica-light.woff') format('woff');
    font-weight: 300; /* Light */
    font-style: normal;
}

/* Light Italic font */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('/fonts/helvetica/neue-helvetica-light-italic.woff2') format('woff2'),
         url('/fonts/helvetica/neue-helvetica-light-italic.woff') format('woff');
    font-weight: 300; /* Light */
    font-style: italic;
}

/* Normal font (regular weight) */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('/fonts/helvetica/neue-helvetica-normal.woff2') format('woff2'),
         url('/fonts/helvetica/neue-helvetica-normal.woff') format('woff');
    font-weight: 400; /* Normal */
    font-style: normal;
}

/* Bold font */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('/fonts/helvetica/neue-helvetica-bold.woff2') format('woff2'),
         url('/fonts/helvetica/neue-helvetica-bold.woff') format('woff');
    font-weight: 700; /* Bold */
    font-style: normal;
}

/* Bold Italic font */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('/fonts/helvetica/neue-helvetica-bold-italic.woff2') format('woff2'),
         url('/fonts/helvetica/neue-helvetica-bold-italic.woff') format('woff');
    font-weight: 700; /* Bold */
    font-style: italic;
}