/* Minimal custom CSS - Most styling is handled by Tailwind */

/* Self-hosted fonts - These must remain in CSS */
@font-face {
  font-family: "Futura";
  src: url("/fonts/Futura-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sofia Pro";
  src: url("/fonts/sofiaproregular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sofia Pro";
  src: url("/fonts/sofiapromedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sofia Pro";
  src: url("/fonts/sofiaprosemibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Base body font - Applied globally */
body {
  font-family: "Sofia Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #4E4E4E;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Default paragraph spacing */
p {
  margin-bottom: 16px;
}

