/**
 * PRETTIS.ai Custom Fonts
 * TG Praktikal: Headings and Buttons
 * Montserrat: Subheadings and Secondary Text
 */

/* Import Montserrat from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* TG Praktikal - For Headings and Buttons */
@font-face {
  font-family: 'TG Praktikal';
  src: url('/fonts/TGPraktikalTrials-UltraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TG Praktikal';
  src: url('/fonts/TGPraktikalTrials-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* CSS Classes for Easy Application */
.font-heading {
  font-family: 'TG Praktikal', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
}

.font-subheading {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
}

.font-secondary {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
}

.font-button {
  font-family: 'TG Praktikal', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
}

