What is the best approach for displaying business logic hierarchy in my web app?

I have been trying to figure this out for a while and I've settled on breadcrumbs being displayed as the page title for the sake of meeting a development release.

The product I'm working on after login asks users to establish a hierarchy based on business logic before they can enter the application. Using breadcrumbs for this seems like bad practice.

It goes something like this: Choose Year > Choose Season > Choose Category 1 > Choose Category 2 "ENTER"

Users have asked that they can view this hierarchy at all times because this single interface can be used by multiple people at different moments in time in a group setting, and be able to edit this hierarchy if needed.

Is there a better way to display this information?