Is there a way to edit the fonts of headings without a plugin (in the 2022 theme)?

if your are using child theme, you can edit your style.css and make you css code override ALL previous styling rules for that specific property on that element!.

h1 {
 font-family: 'xxx' !important;
 font-size: 32px !important;
}