/* Import Roboto from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Apply Roboto globally */
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-normal);
  background-color: var(--background-primary);
}

/* Optional: Customize headers */
h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

/* Optional: Customize code blocks */
code, pre {
  font-family: "Roboto Mono", monospace;
}
