/* Typography override: Replace Raleway with Inter across the site */
/* Load order: ensure this file is included LAST in layout to override previous rules */

html, body,
button, input, select, textarea,
.btn, .text, .title, .heading, .label,
[style*="font-family: Raleway"],
[style*="'Raleway'"],
[style*='Raleway'] {
  font-family: Inter, sans-serif !important;
}

/* Weight mapping equivalents */
/* Raleway Bold -> Inter Semibold (600) */
.fw-bold, .font-bold, .bold, b, strong { font-weight: 600; }

/* Raleway Semibold -> Inter Semibold (600) */
.fw-semibold, .font-semibold, .semibold { font-weight: 600; }

/* Raleway Medium -> Inter Medium (500) */
.fw-medium, .font-medium, .medium { font-weight: 500; }

/* Raleway Regular -> Inter Regular (400) */
.fw-regular, .font-regular, .regular { font-weight: 400; }

/* Improve legibility in dense text blocks */
p, li, .body-text, .paragraph { 
  font-feature-settings: 'liga' on, 'calt' on; 
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure headings adopt Inter while keeping hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: Inter, sans-serif !important;
  font-weight: 600;
}


