···108108You can see a list of all plugins and their configuration options [[tags/plugin|here]].
109109110110If you'd like to make your own plugins, see the [[making plugins|making custom plugins]] guide.
111111+112112+## Fonts
113113+114114+Fonts can be specified as a `string` or a `FontSpecification`:
115115+116116+```ts
117117+// string
118118+typography: {
119119+ header: "Schibsted Grotesk",
120120+ ...
121121+}
122122+123123+// FontSpecification
124124+typography: {
125125+ header: {
126126+ name: "Schibsted Grotesk",
127127+ weights: [400, 700],
128128+ includeItalic: true,
129129+ },
130130+ ...
131131+}
132132+```