/* Inter Font - Self-hosted for consistent cross-platform rendering */
/* Using TTF format with proper iOS fallbacks */

:root {
  --font-inter: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
  --font-ubuntu: "Ubuntu", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
}

/* Inter Variable Font - Supports all weights (100-900) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter.woff2') format('woff2');
  /* iOS optimization */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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