/* Font Loading Strategy
   Using system fonts with optimal fallbacks for enterprise look
   This avoids external dependencies and ensures fast loading */

@font-face {
  font-family: 'System';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: local('SF Pro Display'), local('Segoe UI'), local('Roboto'), local('Helvetica Neue'), local('Arial');
}

/* If you want to use custom fonts later, add them here:
   
   Example for self-hosted fonts:
   
   @font-face {
     font-family: 'Custom Sans';
     font-style: normal;
     font-weight: 400;
     font-display: swap;
     src: url('/fonts/custom-sans-regular.woff2') format('woff2'),
          url('/fonts/custom-sans-regular.woff') format('woff');
   }
   
   @font-face {
     font-family: 'Custom Sans';
     font-style: normal;
     font-weight: 500;
     font-display: swap;
     src: url('/fonts/custom-sans-medium.woff2') format('woff2'),
          url('/fonts/custom-sans-medium.woff') format('woff');
   }
   
   @font-face {
     font-family: 'Custom Sans';
     font-style: normal;
     font-weight: 600;
     font-display: swap;
     src: url('/fonts/custom-sans-semibold.woff2') format('woff2'),
          url('/fonts/custom-sans-semibold.woff') format('woff');
   }
   
   @font-face {
     font-family: 'Custom Sans';
     font-style: normal;
     font-weight: 700;
     font-display: swap;
     src: url('/fonts/custom-sans-bold.woff2') format('woff2'),
          url('/fonts/custom-sans-bold.woff') format('woff');
   }
*/