/* Global Font Configuration */
/* To change fonts in the future, only edit this file */

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

/* Global font-family declaration */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 500; /* Inter Medium */
}

/* Ensure all elements inherit Inter */
* {
    font-family: inherit;
}

/* Headers use Semi-Bold for visual hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* Table headers */
.table thead th {
    font-weight: 600;
}

/* Maintain weight 500 for buttons and badges */
.btn, .badge {
    font-weight: 500;
}
