/*
Ledger One — Inter font-only update
-----------------------------------
Purpose:
  Change the website typography to Inter without altering any other
  colour, spacing, sizing, positioning, responsive, border, or layout rules.

Installation:
  Load this stylesheet AFTER the existing Ledger One stylesheets,
  including style-main.css, style-index.css and style-faqs.css where present.

Google Fonts:
  Inter is free/open-source and loaded from Google Fonts.
  The imported weights correspond to the weights already requested by the
  site's existing font setup (200, 300, 400, 600 and 700, including italics).

Last prepared: 7 August 2026
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,400;1,600;1,700&display=swap');

/*
Font-family only.
No other CSS properties are changed.
*/
html,
body,
header,
nav,
main,
section,
article,
aside,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
ol,
li,
dl,
dt,
dd,
blockquote,
figcaption,
table,
thead,
tbody,
tfoot,
tr,
th,
td,
label,
button,
input,
select,
textarea,
optgroup {
    font-family: 'Inter', sans-serif !important;
}
