26.03.2026, 11:01
You can use web fonts via Custom CSS. Make sure that @import rule is placed before any other CSS.
Code:
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body {
font-family: "PT Sans", sans-serif;
}