/* Local fallback for Google Fonts - System fonts will be used instead of CDN */
/* This file replaces Google Fonts CDN to improve localhost performance */

@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  /* Use system fonts as fallback */
  src: local('Public Sans'), local('PublicSans'), local('Arial'), local('Helvetica');
}

/* Inter font fallback */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: local('Inter'), local('Arial'), local('Helvetica');
}

/* Apply fonts globally */
body {
  font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}
