/* Fonts used by the active "signal" theme: Inter (body/UI/headings) and
   JetBrains Mono (email/code). Loaded in a single request. The <link
   rel="preconnect"> tags in the page <head> warm the fonts.gstatic.com
   connection before this request fires. */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

html {
  background-color: var(--bg);
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-base);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
