I have implemented typst into my own rust project and created an own world implementation. Everyhting works like a charm. The only problem I face, is that I would like to change the default font type (especially for math).
How can I archive that? The following was my try:
if let Some(Ok(text)) = f.math.scope_mut().get_mut("text") {
*text = typst::foundations::Value::Str("Poppins".into());
}