/* 
 * This file contains font declarations for the project
 * For a real implementation, you would need to either:
 * 1. License and host the actual Neue Haas Grotesk fonts
 * 2. Use a similar alternative like Inter or SF Pro
 */

/* Using system fonts as fallback since we can't include the actual Neue Haas Grotesk fonts */
@font-face {
  font-family: 'Neue Haas Grotesk Text';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('SF Pro Text'), local('Helvetica Neue'), local('Arial');
}

@font-face {
  font-family: 'Neue Haas Grotesk Text';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local('SF Pro Text Medium'), local('Helvetica Neue Medium'), local('Arial');
}

@font-face {
  font-family: 'Neue Haas Grotesk Text';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('SF Pro Text Bold'), local('Helvetica Neue Bold'), local('Arial Bold');
}

@font-face {
  font-family: 'Neue Haas Grotesk Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('SF Pro Display'), local('Helvetica Neue'), local('Arial');
}

@font-face {
  font-family: 'Neue Haas Grotesk Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local('SF Pro Display Medium'), local('Helvetica Neue Medium'), local('Arial');
}

@font-face {
  font-family: 'Neue Haas Grotesk Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('SF Pro Display Bold'), local('Helvetica Neue Bold'), local('Arial Bold');
}