/* Montserrat Font Stylesheet for AEM */

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

/* Root variables */
:root {
  --font-primary: 'Montserrat', Arial, sans-serif;
}

/* Base styles */
body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.5;
  color: #222;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
}

/* Utility classes */
.font-light { font-weight: 300; }
.font-regular { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* AEM Components (optional) */
.cmp-title,
.cmp-text {
  font-family: var(--font-primary);
}
