Way to replace a word in all passages?

Please specify version and format if asking for help, or apply optional tags above:
Twine Version: 2.3.5
Story Format: Harlowe

Hello! I’m wondering how I can replace a word in all passages with a new word. Is there a way to use the enchant keyword to do this? Thanks!

Such an outcome would generally be achieved by storing the ‘word’ within a Story Variable, which is inserted into the textual content of your Passages like so…

Bears like to eat $bearFood when they can get it.

… and then using the (set:) macro to assign/reassign the correct ‘word’ to that variable as needed.

(set: $bearFood to "honey")

There is the (replace:) macro.
https://twine2.neocities.org/#macro_replace
But it could easily have unintended consequences. Greyelf’s suggestion is a much better idea.