/**
 * Font definitions for Kramall Studio
 */

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

/* Font variables */
:root {
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell,
    'Helvetica Neue', sans-serif;

  /* Font weights */
  --font-weight-thin: 100;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Common font sizes */
  --font-size-base: 18px;
  --font-size-small: 14px;
  --font-size-large: 20px;

  font-size: var(--font-size-base);
}

/* Base typography */
body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 {
  font-size: 2.88rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.45rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}
