Can we hyphenate using wordlist as in xelatex?

I typeset lot of Sanskrit and other indic languages using xelatex. For better nuanced hyphenation I use word-lists like these:

\hyphenation{%
वेदान्त-परि-शील-न-कुश-लानां
विचार-प्रचोदन-स्थानं
सर्व-वेदान्त-तात्पर्य-निर्णायक-त्वेन
}

Is it possible in typst?

Typst uses -? (unicode soft hypen \u{ad}) as hyphenation points.

#let words = (
  "वेदान्त-परि-शील-न-कुश-लानां",
  "विचार-प्रचोदन-स्थानं",
  "सर्व-वेदान्त-तात्पर्य-निर्णायक-त्वेन",
)

#show: body => words.fold(body, (body, word) => {
  show word.replace("-", ""): word.replace("-", [-?].text)
  body
})

your text here