/* Modern Font CSS for BML */

/* Import Inter font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Update root variables */
/* :root {
  --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-family-headings: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
} */

/* Apply font to body and all elements */
/* body {
  font-family: var(--font-family-base) !important;
} */

/* Apply font to headings */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  /* font-family: var(--font-family-headings) !important; */
  font-weight: 600;
}

/* Apply font to specific elements */
/* .kt-header__title, 
.kt-menu__link-text,
.kt-subheader__title,
.kt-portlet__head-title,
.kt-widget__username,
.form-control,
.btn,
.nav-link,
.dropdown-item {
  font-family: var(--font-family-base) !important;
} */

/* Adjust font weights */
.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-bold {
  font-weight: 600 !important;
}

.font-weight-bolder {
  font-weight: 700 !important;
} 