/* ===================================
   D-DIN FONT DEFINITIONS
   Use absolute paths /fonts/ for all files
   =================================== */

@font-face {
    font-family: 'D-DIN';
    src: url('fonts/D-DIN.otf') format('opentype'),
         url('fonts/D-DIN.woff') format('woff'),
         url('fonts/D-DIN.woff2') format('woff2'),
         url('fonts/D-DIN.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'D-DIN';
    src: url('/fonts/D-DIN-Bold.otf') format('opentype'),
         url('/fonts/D-DIN-Bold.woff') format('woff'),
         url('/fonts/D-DIN-Bold.woff2') format('woff2'),
         url('/fonts/D-DIN-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Apply D-DIN to all elements */
* {
    font-family: 'D-DIN', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* Ensure text elements use D-DIN */
html, body, div, p, span, a, button, input, select, textarea, h1, h2, h3, h4, h5, h6 {
    font-family: 'D-DIN', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}