/* ==========================================================================
   FONTS: Inter (Regular 400, SemiBold 600, Bold 700)
   ========================================================================== */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Inter Regular'), local('Inter-Regular'),
       url('../../fonts/inter/Inter-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Inter SemiBold'), local('Inter-SemiBold'),
       url('../../fonts/inter/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Inter Bold'), local('Inter-Bold'),
       url('../../fonts/inter/Inter-Bold.woff2') format('woff2');
}

/* Global typography */
html, body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.55;
}

h1, h2 { font-weight: 700; }
h3, h4 { font-weight: 600; }
h5, h6 { font-weight: 400; }

button, input, textarea {
  font-family: 'Inter', sans-serif;
}