/* Delight font loading - place font files under wwwroot/fonts/delight-* */

@font-face {
    font-family: 'Delight';
    src: url('/fonts/delight-regular.woff2') format('woff2'),
         url('/fonts/delight-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Delight';
    src: url('/fonts/delight-bold.woff2') format('woff2'),
         url('/fonts/delight-bold.woff') format('woff');
    font-weight: 700;
    font-style: bold;
    font-display: swap;
}

@font-face {
    font-family: 'Delight';
    src: url('/fonts/delight-thin.woff2') format('woff2'),
         url('/fonts/delight-thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Delight';
    src: url('/fonts/delight-extralight.woff2') format('woff2'),
         url('/fonts/delight-extralight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Delight';
    src: url('/fonts/delight-light.woff2') format('woff2'),
         url('/fonts/delight-light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Delight';
    src: url('/fonts/delight-medium.woff2') format('woff2'),
         url('/fonts/delight-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Delight';
    src: url('/fonts/delight-semibold.woff2') format('woff2'),
         url('/fonts/delight-semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Delight';
    src: url('/fonts/delight-extrabold.woff2') format('woff2'),
         url('/fonts/delight-extrabold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Delight';
    src: url('/fonts/delight-black.woff2') format('woff2'),
         url('/fonts/delight-black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Apply Delight across the site (backend pages) */
html, body {
    font-family: 'Delight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}
