/**
 * Dana Font Family Configuration
 * Local font assets from assets/fonts/dana
 */

/* Dana Thin (100) */
@font-face {
  font-family: 'Dana';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url('../fonts/dana/woff/dana-thin.woff') format('woff'),
       url('../fonts/dana/ttf/dana-thin.ttf') format('truetype');
}

/* Dana ExtraLight (200) */
@font-face {
  font-family: 'Dana';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url('../fonts/dana/woff/dana-extralight.woff') format('woff'),
       url('../fonts/dana/ttf/dana-extralight.ttf') format('truetype');
}

/* Dana Light (300) */
@font-face {
  font-family: 'Dana';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/dana/woff/dana-light.woff') format('woff'),
       url('../fonts/dana/ttf/dana-light.ttf') format('truetype');
}

/* Dana Regular (400) */
@font-face {
  font-family: 'Dana';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dana/woff2/dana-regular.woff2') format('woff2'),
       url('../fonts/dana/woff/dana-regular.woff') format('woff'),
       url('../fonts/dana/ttf/dana-regular.ttf') format('truetype');
}

/* Dana Medium (500) */
@font-face {
  font-family: 'Dana';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/dana/woff2/dana-medium.woff2') format('woff2'),
       url('../fonts/dana/woff/dana-medium.woff') format('woff'),
       url('../fonts/dana/ttf/dana-medium.ttf') format('truetype');
}

/* Dana SemiBold / DemiBold (600) */
@font-face {
  font-family: 'Dana';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/dana/woff/dana-demibold.woff') format('woff'),
       url('../fonts/dana/ttf/dana-demibold.ttf') format('truetype');
}

/* Dana Bold (700) */
@font-face {
  font-family: 'Dana';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/dana/woff2/dana-bold.woff2') format('woff2'),
       url('../fonts/dana/woff/dana-bold.woff') format('woff'),
       url('../fonts/dana/ttf/dana-bold.ttf') format('truetype');
}

/* Dana ExtraBold (800) */
@font-face {
  font-family: 'Dana';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/dana/woff/dana-extrabold.woff') format('woff'),
       url('../fonts/dana/ttf/dana-extrabold.ttf') format('truetype');
}

/* Dana Black (900) */
@font-face {
  font-family: 'Dana';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/dana/woff/dana-black.woff') format('woff'),
       url('../fonts/dana/ttf/dana-black.ttf') format('truetype');
}

/* Dana UltraBold (950) */
@font-face {
  font-family: 'Dana';
  font-style: normal;
  font-weight: 950;
  font-display: swap;
  src: url('../fonts/dana/woff/dana-ultrabold.woff') format('woff'),
       url('../fonts/dana/ttf/dana-ultrabold.ttf') format('truetype');
}

/* Global Font Setup */
html, body, button, input, select, textarea, h1, h2, h3, h4, h5, h6 {
  font-family: 'Dana', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}