/* Import Funnel Display from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Funnel+Display:wght@400;500;600;700&display=swap");


* {
  
  font-family: "Funnel Display", sans-serif;
  /* Apply your font globally */
}
/* Override for body to ensure inheritance */
body {
    font-family: 'Funnel Display', sans-serif;
    background-color: #f5f5f5; /* Optional: Set a background color for better contrast */
}

/* Ensure headings use the same font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Funnel Display', sans-serif;
}

