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

/* Map Satoshi font-family to Inter */
.satoshi, 
body,
h1, h2, h3, h4, h5, h6,
.btn {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Ensure font weights match */
.satoshi-light { font-weight: 300; }
.satoshi-regular { font-weight: 400; }
.satoshi-medium { font-weight: 500; }
.satoshi-semibold { font-weight: 600; }
.satoshi-bold { font-weight: 700; }
.satoshi-black { font-weight: 900; } 